home *** CD-ROM | disk | FTP | other *** search
- Path: nntp.teleport.com!usenet
- From: GHouck <hksys@teleport.com>
- Newsgroups: comp.lang.c++
- Subject: Re: Copy files ?
- Date: 15 Apr 1996 12:26:35 GMT
- Organization: systems hk
- Message-ID: <4ktf9r$kkg@nadine.teleport.com>
- References: <4ksuj7$2tl@hermes.is.co.za>
- NNTP-Posting-Host: ip-pdx02-50.teleport.com
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 1.22 (Windows; I; 32bit)
-
- janinep@geoscience.org.za (Janine Prinsloo) wrote:
- >Is it possible to copy a datafile from one drive to another in a C++
- >program without having to read it and write it again?
- >
- >(I am using Borland C++ v4.0)
- >
- Janine,
-
- Try:
-
- status = system( "copy file1 file2" );
-
- Yours, Geoff Houck
-
-
-